home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / TUTORIAL.BIN / AlignStyle.class (.txt) < prev    next >
Encoding:
Java Class File  |  1996-12-16  |  364 b   |  12 lines

  1. package symantec.itools.awt;
  2.  
  3. public interface AlignStyle {
  4.    int ALIGN_LEFT = 0;
  5.    int ALIGN_CENTERED = 1;
  6.    int ALIGN_RIGHT = 2;
  7.  
  8.    void setAlignStyle(int var1);
  9.  
  10.    int getAlignStyle();
  11. }
  12.